home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue46 / ComCorn / UiMain.dfm / UiMain.txt
Encoding:
Text File  |  1999-05-02  |  3.3 KB  |  183 lines

  1. object FrmMain: TFrmMain
  2.   Left = 201
  3.   Top = 100
  4.   BorderIcons = [biSystemMenu]
  5.   BorderStyle = bsSingle
  6.   Caption = 'Tic-Tac-Toe'
  7.   ClientHeight = 283
  8.   ClientWidth = 303
  9.   Color = clBtnFace
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -11
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = []
  15.   Menu = MainMenu1
  16.   OldCreateOrder = False
  17.   Position = poDefault
  18.   OnCreate = FormCreate
  19.   PixelsPerInch = 96
  20.   TextHeight = 13
  21.   object SbTL: TSpeedButton
  22.     Left = 33
  23.     Top = 19
  24.     Width = 75
  25.     Height = 75
  26.     Flat = True
  27.     OnClick = SBClick
  28.   end
  29.   object SbTM: TSpeedButton
  30.     Tag = 1
  31.     Left = 113
  32.     Top = 19
  33.     Width = 75
  34.     Height = 75
  35.     Flat = True
  36.     OnClick = SBClick
  37.   end
  38.   object SbTR: TSpeedButton
  39.     Tag = 2
  40.     Left = 193
  41.     Top = 19
  42.     Width = 75
  43.     Height = 75
  44.     Flat = True
  45.     OnClick = SBClick
  46.   end
  47.   object SbMM: TSpeedButton
  48.     Tag = 4
  49.     Left = 113
  50.     Top = 99
  51.     Width = 75
  52.     Height = 75
  53.     Flat = True
  54.     OnClick = SBClick
  55.   end
  56.   object SbBL: TSpeedButton
  57.     Tag = 6
  58.     Left = 33
  59.     Top = 179
  60.     Width = 75
  61.     Height = 75
  62.     Flat = True
  63.     OnClick = SBClick
  64.   end
  65.   object SbBR: TSpeedButton
  66.     Tag = 8
  67.     Left = 193
  68.     Top = 179
  69.     Width = 75
  70.     Height = 75
  71.     Flat = True
  72.     OnClick = SBClick
  73.   end
  74.   object SbMR: TSpeedButton
  75.     Tag = 5
  76.     Left = 193
  77.     Top = 99
  78.     Width = 75
  79.     Height = 75
  80.     Flat = True
  81.     OnClick = SBClick
  82.   end
  83.   object SbBM: TSpeedButton
  84.     Tag = 7
  85.     Left = 113
  86.     Top = 179
  87.     Width = 75
  88.     Height = 75
  89.     Flat = True
  90.     OnClick = SBClick
  91.   end
  92.   object SbML: TSpeedButton
  93.     Tag = 3
  94.     Left = 33
  95.     Top = 99
  96.     Width = 75
  97.     Height = 75
  98.     Flat = True
  99.     OnClick = SBClick
  100.   end
  101.   object Bevel1: TBevel
  102.     Left = 28
  103.     Top = 91
  104.     Width = 246
  105.     Height = 7
  106.     Shape = bsBottomLine
  107.   end
  108.   object Bevel2: TBevel
  109.     Left = 110
  110.     Top = 11
  111.     Width = 9
  112.     Height = 250
  113.     Shape = bsLeftLine
  114.   end
  115.   object Bevel3: TBevel
  116.     Left = 28
  117.     Top = 171
  118.     Width = 246
  119.     Height = 7
  120.     Shape = bsBottomLine
  121.   end
  122.   object Bevel4: TBevel
  123.     Left = 190
  124.     Top = 11
  125.     Width = 9
  126.     Height = 250
  127.     Shape = bsLeftLine
  128.   end
  129.   object StatusBar: TStatusBar
  130.     Left = 0
  131.     Top = 264
  132.     Width = 303
  133.     Height = 19
  134.     Panels = <>
  135.     SimplePanel = True
  136.   end
  137.   object MainMenu1: TMainMenu
  138.     object FileItem: TMenuItem
  139.       Caption = '&File'
  140.       object NewGameItem: TMenuItem
  141.         Caption = '&New Game'
  142.         ShortCut = 16462
  143.         OnClick = NewGameItemClick
  144.       end
  145.       object N1: TMenuItem
  146.         Caption = '-'
  147.         ShortCut = 16472
  148.       end
  149.       object ExitItem: TMenuItem
  150.         Caption = 'E&xit'
  151.         ShortCut = 16472
  152.         OnClick = ExitItemClick
  153.       end
  154.     end
  155.     object SkillItem: TMenuItem
  156.       Caption = '&Skill'
  157.       object UnconItem: TMenuItem
  158.         Caption = '&Unconscious'
  159.         GroupIndex = 1
  160.         RadioItem = True
  161.         ShortCut = 16469
  162.         OnClick = SkillItemClick
  163.       end
  164.       object AwakeItem: TMenuItem
  165.         Tag = 1
  166.         Caption = '&Awake'
  167.         Checked = True
  168.         GroupIndex = 1
  169.         RadioItem = True
  170.         ShortCut = 16449
  171.         OnClick = SkillItemClick
  172.       end
  173.     end
  174.     object HelpItem: TMenuItem
  175.       Caption = '&Help'
  176.       object AboutItem: TMenuItem
  177.         Caption = '&About'
  178.         OnClick = AboutItemClick
  179.       end
  180.     end
  181.   end
  182. end
  183.